type regexp.lazyFlag
12 uses
regexp (current package)
exec.go#L122: type lazyFlag uint64
exec.go#L124: func newLazyFlag(r1, r2 rune) lazyFlag {
exec.go#L125: return lazyFlag(uint64(r1)<<32 | uint64(uint32(r2)))
exec.go#L128: func (f lazyFlag) match(op syntax.EmptyOp) bool {
exec.go#L191: var flag lazyFlag
exec.go#L260: func (m *machine) step(runq, nextq *queue, pos, nextPos int, c rune, nextCond *lazyFlag) {
exec.go#L317: func (m *machine) add(q *queue, pc uint32, pos int, cap []int, cond *lazyFlag, t *thread) *thread {
exec.go#L423: var flag lazyFlag
regexp.go#L381: context(pos int) lazyFlag
regexp.go#L412: func (i *inputString) context(pos int) lazyFlag {
regexp.go#L459: func (i *inputBytes) context(pos int) lazyFlag {
regexp.go#L511: func (i *inputReader) context(pos int) lazyFlag {